From f17368c3eef9b7e07a9eba8e47308120b957c086 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sun, 21 Oct 2018 18:11:02 -0500 Subject: [PATCH] Fix flake8 problems --- tests/test_pgwui_core.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_pgwui_core.py b/tests/test_pgwui_core.py index 3508284..db7506a 100644 --- a/tests/test_pgwui_core.py +++ b/tests/test_pgwui_core.py @@ -20,10 +20,11 @@ # Karl O. Pinc from pgwui_core import pgwui_core -import pgwui_core.form_constants import * +from pgwui_core import form_constants + def test_userinitialpost_init(): uip = pgwui_core.UserInitialPost() - assert uip.db == LIVE_DB + assert uip.db == form_constants.LIVE_DB assert uip.user == '' assert uip.password == '' -- 2.34.1